home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 98 / Skunkware 98.iso / src / net / bind-contrib.tar.gz / bind-contrib.tar / contrib / nslint-1.5.1 / configure.in < prev    next >
Text File  |  1996-10-25  |  492b  |  39 lines

  1. dnl Process this file with autoconf to produce a configure script.
  2. dnl
  3.  
  4. AC_INIT(nslint.c)
  5.  
  6. AC_CANONICAL_SYSTEM
  7.  
  8. AC_PROG_CC
  9.  
  10. umask 002
  11.  
  12. if test -z "$PWD" ; then
  13.     PWD=`pwd`
  14. fi
  15.  
  16. AC_LBL_C_INIT(V_CCOPT, V_INCLS)
  17.  
  18. AC_CHECK_HEADERS(malloc.h)
  19.  
  20. AC_REPLACE_FUNCS(strerror)
  21. AC_CHECK_LIB(nsl, main)
  22. AC_CHECK_LIB(socket, main)
  23.  
  24. AC_LBL_DEVEL(V_CCOPT)
  25.  
  26. if test -r lbl/gnuc.h ; then
  27.     rm -f gnuc.h
  28.     ln -s lbl/gnuc.h gnuc.h
  29. fi
  30.  
  31. AC_SUBST(V_CCOPT)
  32. AC_SUBST(V_INCLS)
  33.  
  34. AC_PROG_INSTALL
  35.  
  36. AC_OUTPUT(Makefile)
  37.  
  38. exit 0
  39.